← Index
NYTProf Performance Profile   
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:11 2016

Filename(eval 46)[/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Exception/Class.pm:177]
StatementsExecuted 854 statements in 2.46ms
Eval Invoked At/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Exception/Class.pm line 177
Sibling evals1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
424114.84ms5.17msPerl::Critic::Exception::AggregateConfiguration::::FieldsPerl::Critic::Exception::AggregateConfiguration::Fields
42622496µs496µsPerl::Critic::Exception::AggregateConfiguration::::exceptionsPerl::Critic::Exception::AggregateConfiguration::exceptions
1119µs63µsPerl::Critic::Exception::AggregateConfiguration::::BEGIN@3Perl::Critic::Exception::AggregateConfiguration::BEGIN@3
0000s0sPerl::Critic::Exception::AggregateConfiguration::::descriptionPerl::Critic::Exception::AggregateConfiguration::description
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Perl::Critic::Exception::AggregateConfiguration;
2
3267µs2118µs
# spent 63µs (9+54) within Perl::Critic::Exception::AggregateConfiguration::BEGIN@3 which was called: # once (9µs+54µs) by Exception::Class::_make_subclass at line 3
use base qw(Perl::Critic::Exception);
# spent 63µs making 1 call to Perl::Critic::Exception::AggregateConfiguration::BEGIN@3 # spent 54µs making 1 call to base::import
4
51400nsour $VERSION = '1.1';
6
712µs1;
8
9sub description
10{
11 return 'A collected set of configuration exceptions.';
12}
134241.41ms424334µs
# spent 5.17ms (4.84+335µs) within Perl::Critic::Exception::AggregateConfiguration::Fields which was called 424 times, avg 12µs/call: # 424 times (4.84ms+335µs) by Exception::Class::Base::_initialize at line 135 of Exception/Class/Base.pm, avg 12µs/call
sub Fields { return ($_[0]->SUPER::Fields, 'exceptions') }
# spent 334µs making 424 calls to Exception::Class::Base::Fields, avg 789ns/call
14
15426986µs
# spent 496µs within Perl::Critic::Exception::AggregateConfiguration::exceptions which was called 426 times, avg 1µs/call: # 425 times (493µs+0s) by Perl::Critic::Exception::AggregateConfiguration::has_exceptions at line 98 of Perl/Critic/Exception/AggregateConfiguration.pm, avg 1µs/call # once (3µs+0s) by Perl::Critic::PolicyFactory::_init at line 149 of Perl/Critic/PolicyFactory.pm
sub exceptions { $_[0]->{exceptions} }
16
17;